home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / ril.zip / ril2ad.c < prev    next >
C/C++ Source or Header  |  1992-09-08  |  593b  |  36 lines

  1. /*                               -*- Mode: C -*- 
  2.  * compile.c
  3.  * 
  4.  * Description     : RIL "compiler"
  5.  * 
  6.  * Author          : roger
  7.  * Created On      : Fri Apr 24 19:44:01 1992
  8.  * 
  9.  * Configuration Management
  10.  * 
  11.  * @(#)ril2ad.c    1.2    8/17/92
  12.  * 
  13.  * VERSION   SPR   MODIFIER   DATE AND TIME
  14.  * 1.2       0     rogerr     Mon Aug 17 10:30:32 1992
  15.  *           return status so it works better with make 
  16.  * 
  17.  */
  18.  
  19.  
  20. #include <ril.h>
  21.  
  22.  
  23. main (argc, argv)
  24.     int argc;
  25.     char* argv[];
  26. {   
  27.     int i,n;
  28.  
  29.     for (i=1; i < argc; i++)
  30.     {
  31.         if ((n=    rilCompile (argv[i])) < 0)
  32.             exit(n);
  33.     }
  34.     exit (0);
  35. }
  36.